home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970326-19970626 / 000193_news@newsmaster….columbia.edu _Wed May 14 20:02:15 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id UAA02941
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 14 May 1997 20:02:15 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id UAA11377
  7.     for kermit.misc@watsun; Wed, 14 May 1997 20:02:14 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: K95 problem with logging session
  12. Date: 15 May 1997 00:02:13 GMT
  13. Organization: Columbia University
  14. Lines: 39
  15. Message-ID: <5ldjq5$7a4$1@apakabar.cc.columbia.edu>
  16. References: <33787950.5951997@news.uoguelph.ca> <gerlachEA4Ky6.KHq@netcom.com> <337a1a61.7943489@news.uoguelph.ca>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7025
  19.  
  20. In article <337a1a61.7943489@news.uoguelph.ca>,
  21. Leon Loo <lloo@POBoxes.com.X> wrote:
  22. : On Tue, 13 May 1997 15:13:18 GMT, gerlach@netcom.com (Matthew H.
  23. : Gerlach) wrote:
  24. : >A peer at work has mentioned a similar problem to me, but I have not
  25. : >verified it myself.  Using Kermit 95, I think ver 1.1.10, he says he cannot
  26. : >log to a directory if the directory name startes with decimal digits,
  27. : >as opposed to characters a-z.  It might be that kermit cannot open a file
  28. : >whose name starts with digits.
  29. : I originally ran into the problem with version 1.1.7 and upgraded to
  30. : 1.1.11 hoping it would have been fixed.  It was not.
  31. I posted an answer to this one days ago -- maybe it didn't make it?
  32. Here it is again:
  33.  
  34. When referring to a file that does not yet exist, the "\nnn" (nnn being
  35. digits) notation is ambiguous.  Does it mean, literally, (in this case)
  36. "\123", or is it a backslash-escape, which (in this case) evaluates to the
  37. character '{'?
  38.  
  39. The manual lists numerous ways to handle such situations.  In this case,
  40. the simplest is to use the "other" slash:
  41.  
  42.   log session c:/123
  43.  
  44. Others include:
  45.  
  46.   log session c:\\123
  47.  
  48. or:
  49.  
  50.   set command quoting off
  51.   log session c:\123
  52.   set command quoting on
  53.  
  54. etc.
  55.  
  56. - Frank